home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 351-375 / 351 / pdc / pdcsrc.lzh / PDC / bcopy.c < prev    next >
C/C++ Source or Header  |  1990-04-06  |  237b  |  17 lines

  1.  
  2. /*
  3.  - bcopy - Berklix equivalent of memcpy
  4.  */
  5.  
  6. #include "config.h"
  7.  
  8. bcopy(src, dst, length)
  9. CONST char *src;
  10. char *dst;
  11. int length;
  12. {
  13.     extern VOIDSTAR memcpy();
  14.  
  15.     /*(void)*/ memcpy((VOIDSTAR)dst, (CONST VOIDSTAR)src, (SIZET)length);
  16. }
  17.